runtime.hmap.oldbuckets (field)

29 uses

	runtime (current package)
		map.go#L119: 	oldbuckets unsafe.Pointer // previous bucket array of half the size, non-nil only when growing
		map.go#L434: 	if c := h.oldbuckets; c != nil {
		map.go#L504: 	if c := h.oldbuckets; c != nil {
		map.go#L548: 	if c := h.oldbuckets; c != nil {
		map.go#L966: 			b = (*bmap)(add(h.oldbuckets, oldbucket*uintptr(t.BucketSize)))
		map.go#L1104: 	if oldBuckets := h.oldbuckets; oldBuckets != nil {
		map.go#L1109: 	h.oldbuckets = nil
		map.go#L1158: 	h.oldbuckets = oldbuckets
		map.go#L1204: 	return h.oldbuckets != nil
		map.go#L1243: 	b := (*bmap)(add(h.oldbuckets, bucket*uintptr(t.BucketSize)))
		map.go#L1256: 	b := (*bmap)(add(h.oldbuckets, oldbucket*uintptr(t.BucketSize)))
		map.go#L1355: 			b := add(h.oldbuckets, oldbucket*uintptr(t.BucketSize))
		map.go#L1382: 		h.oldbuckets = nil
		map.go#L1723: 	if src.oldbuckets == nil {
		map.go#L1728: 	srcOldbuckets := src.oldbuckets
		map.go#L1814: 			b := (*bmap)(add(h.oldbuckets, uintptr(bucket)*uintptr(t.BucketSize)))
		map.go#L1877: 			b := (*bmap)(add(h.oldbuckets, uintptr(bucket)*uintptr(t.BucketSize)))
		map_fast32.go#L32: 		if c := h.oldbuckets; c != nil {
		map_fast32.go#L81: 		if c := h.oldbuckets; c != nil {
		map_fast32.go#L404: 	b := (*bmap)(add(h.oldbuckets, oldbucket*uintptr(t.BucketSize)))
		map_fast32.go#L479: 			b := add(h.oldbuckets, oldbucket*uintptr(t.BucketSize))
		map_fast64.go#L32: 		if c := h.oldbuckets; c != nil {
		map_fast64.go#L81: 		if c := h.oldbuckets; c != nil {
		map_fast64.go#L408: 	b := (*bmap)(add(h.oldbuckets, oldbucket*uintptr(t.BucketSize)))
		map_fast64.go#L489: 			b := add(h.oldbuckets, oldbucket*uintptr(t.BucketSize))
		map_faststr.go#L83: 	if c := h.oldbuckets; c != nil {
		map_faststr.go#L187: 	if c := h.oldbuckets; c != nil {
		map_faststr.go#L423: 	b := (*bmap)(add(h.oldbuckets, oldbucket*uintptr(t.BucketSize)))
		map_faststr.go#L493: 			b := add(h.oldbuckets, oldbucket*uintptr(t.BucketSize))